home *** CD-ROM | disk | FTP | other *** search
- #ifndef __GL_DEVICE_H__
- #define __GL_DEVICE_H__
- /**************************************************************************
- * *
- * Copyright (C) 1984, Silicon Graphics, Inc. *
- * *
- * These coded instructions, statements, and computer programs contain *
- * unpublished proprietary information of Silicon Graphics, Inc., and *
- * are protected by Federal copyright law. They may not be disclosed *
- * to third parties or copied or duplicated in any form, in whole or *
- * in part, without the prior written consent of Silicon Graphics, Inc. *
- * *
- **************************************************************************/
-
- /*
- * Device name space partitioning
- *
- * 0x0000 -> 0x0fff devices defined by SGI
- * 0x0001 -> 0x00ff buttons
- * 0x0100 -> 0x01ff valuators
- * 0x0200 -> 0x02ff pseudo devices
- * 0x0300 -> 0x0eff reserved
- * 0x0f00 -> 0x0fff additional buttons
- *
- * 0x1000 -> 0x7fff devices defined by users
- * 0x1000 -> 0x2fff buttons
- * 0x3000 -> 0x3fff valuators
- * 0x4000 -> 0x7fff pseudo devices
- *
- * 0x8000 -> 0xffff can not be used
- */
-
- /* macros to test valuator and button numbers */
-
- #define ISBUTTON(b) (((b) >= BUTOFFSET) && ((b) < VALOFFSET) || \
- ((b) >= BUT2OFFSET) && ((b) < USERVALOFFSET))
- #define ISVALUATOR(b) (((b) >= VALOFFSET) && ((b) < PSEUDOFFSET) || \
- ((b) >= USERVALOFFSET) && ((b) < USERPSEUDOFFSET))
-
- #define ISTIMER(t) (((t) >= TIMOFFSET) && ((t) < (TIMCOUNT+TIMOFFSET)))
- #define ISDIAL(t) (((t) >= DIAL0) && ((t) <= DIAL8))
- #define ISLPEN(t) (((t) == LPENX) || ((t) == LPENY))
- #define ISLPENBUT(t) ((t) == LPENBUT)
- #define ISBPADBUT(t) (((t) >= BPAD0) && ((t) <= BPAD3))
- #define ISSW(t) (((t) >= SW0) && ((t) <= SW31))
- #define ISSTDKEYBD(t) (((t) >= BUT0) && ((t) <= MAXKBDBUT))
- #define ISXKEYBD(t) (((t) >= XKBDOFFSET) && ((t) < (XKBDCOUNT+XKBDOFFSET)))
- #define ISKEYBD(t) (ISSTDKEYBD(t) || ISXKEYBD(t))
- #define ISSBALL(t) (((t) >= SBTX) && ((t) <= SBPERIOD))
- #define ISSBALLBUT(t) (((t) >= SBPICK) && ((t) <= SBBUT8))
- #define ISVIDEO(t) ((t) == VIDEO)
-
-
- #define NULLDEV 0
- #define BUTOFFSET 1
- #define VALOFFSET 256 /* 0x0100 */
- #define PSEUDOFFSET 512 /* 0x0200 */
- #define BUT2OFFSET 3840 /* 0x0f00 */
-
- #define TIMOFFSET 515
- #define XKBDOFFSET 143
-
- #define BUTCOUNT 255
- #define VALCOUNT 256
-
- #define TIMCOUNT 4
- #define XKBDCOUNT 28
-
- #define USERBUTOFFSET 4096 /* 0x1000 */
- #define USERVALOFFSET 12288 /* 0x3000 */
- #define USERPSEUDOFFSET 16384 /* 0x4000 */
-
- /*
- * Button definitions for the base US keyboards
- *
- * button button kbd
- * number offset hex key
- * ====== =========== === ===== */
- #define BUT0 1 /* 0+BUTOFFSET, 0, "break" (83-key) */
- #define BUT1 2 /* 1+BUTOFFSET, 1, "setup" (83-key) */
- #define BUT2 3 /* 2+BUTOFFSET, 2, "left ctrl" */
- #define BUT3 4 /* 3+BUTOFFSET, 3, "caps lock" */
- #define BUT4 5 /* 4+BUTOFFSET, 4, "right shift" */
- #define BUT5 6 /* 5+BUTOFFSET, 5, "left shift" */
- #define BUT6 7 /* 6+BUTOFFSET, 6, "escape" */
- #define BUT7 8 /* 7+BUTOFFSET, 7, "1" */
- #define BUT8 9 /* 8+BUTOFFSET, 8, "tab" */
- #define BUT9 10 /* 9+BUTOFFSET, 9, "Q" */
- #define BUT10 11 /* 10+BUTOFFSET, A, "A" */
- #define BUT11 12 /* 11+BUTOFFSET, B, "S" */
- #define BUT12 13 /* 12+BUTOFFSET, C, "no scroll" (83-key) */
- #define BUT13 14 /* 13+BUTOFFSET, D, "2" */
- #define BUT14 15 /* 14+BUTOFFSET, E, "3" */
- #define BUT15 16 /* 15+BUTOFFSET, F, "W" */
- #define BUT16 17 /* 16+BUTOFFSET, 10, "E" */
- #define BUT17 18 /* 17+BUTOFFSET, 11, "D" */
- #define BUT18 19 /* 18+BUTOFFSET, 12, "F" */
- #define BUT19 20 /* 19+BUTOFFSET, 13, "Z" */
- #define BUT20 21 /* 20+BUTOFFSET, 14, "X" */
- #define BUT21 22 /* 21+BUTOFFSET, 15, "4" */
- #define BUT22 23 /* 22+BUTOFFSET, 16, "5" */
- #define BUT23 24 /* 23+BUTOFFSET, 17, "R" */
- #define BUT24 25 /* 24+BUTOFFSET, 18, "T" */
- #define BUT25 26 /* 25+BUTOFFSET, 19, "G" */
- #define BUT26 27 /* 26+BUTOFFSET, 1A, "H" */
- #define BUT27 28 /* 27+BUTOFFSET, 1B, "C" */
- #define BUT28 29 /* 28+BUTOFFSET, 1C, "V" */
- #define BUT29 30 /* 29+BUTOFFSET, 1D, "6" */
- #define BUT30 31 /* 30+BUTOFFSET, 1E, "7" */
- #define BUT31 32 /* 31+BUTOFFSET, 1F, "Y" */
- #define BUT32 33 /* 32+BUTOFFSET, 20, "U" */
- #define BUT33 34 /* 33+BUTOFFSET, 21, "J" */
- #define BUT34 35 /* 34+BUTOFFSET, 22, "K" */
- #define BUT35 36 /* 35+BUTOFFSET, 23, "B" */
- #define BUT36 37 /* 36+BUTOFFSET, 24, "N" */
- #define BUT37 38 /* 37+BUTOFFSET, 25, "8" */
- #define BUT38 39 /* 38+BUTOFFSET, 26, "9" */
- #define BUT39 40 /* 39+BUTOFFSET, 27, "I" */
- #define BUT40 41 /* 40+BUTOFFSET, 28, "O" */
- #define BUT41 42 /* 41+BUTOFFSET, 29, "L" */
- #define BUT42 43 /* 42+BUTOFFSET, 2A, ";" */
- #define BUT43 44 /* 43+BUTOFFSET, 2B, "M" */
- #define BUT44 45 /* 44+BUTOFFSET, 2C, "," */
- #define BUT45 46 /* 45+BUTOFFSET, 2D, "0" */
- #define BUT46 47 /* 46+BUTOFFSET, 2E, "-" */
- #define BUT47 48 /* 47+BUTOFFSET, 2F, "P" */
- #define BUT48 49 /* 48+BUTOFFSET, 30, "[" */
- #define BUT49 50 /* 49+BUTOFFSET, 31, "'" */
- #define BUT50 51 /* 50+BUTOFFSET, 32, "return" */
- #define BUT51 52 /* 51+BUTOFFSET, 33, "." */
- #define BUT52 53 /* 52+BUTOFFSET, 34, "/" */
- #define BUT53 54 /* 53+BUTOFFSET, 35, "=" */
- #define BUT54 55 /* 54+BUTOFFSET, 36, "`" */
- #define BUT55 56 /* 55+BUTOFFSET, 37, "]" */
- #define BUT56 57 /* 56+BUTOFFSET, 38, "\" */
- #define BUT57 58 /* 57+BUTOFFSET, 39, num pad "1" */
- #define BUT58 59 /* 58+BUTOFFSET, 3A, num pad "0" */
- #define BUT59 60 /* 59+BUTOFFSET, 3B, "line feed" (83-key) */
- #define BUT60 61 /* 60+BUTOFFSET, 3C, "back space" */
- #define BUT61 62 /* 61+BUTOFFSET, 3D, "delete" */
- #define BUT62 63 /* 62+BUTOFFSET, 3E, num pad "4" */
- #define BUT63 64 /* 63+BUTOFFSET, 3F, num pad "2" */
- #define BUT64 65 /* 64+BUTOFFSET, 40, num pad "3" */
- #define BUT65 66 /* 65+BUTOFFSET, 41, num pad "." */
- #define BUT66 67 /* 66+BUTOFFSET, 42, num pad "7" */
- #define BUT67 68 /* 67+BUTOFFSET, 43, num pad "8" */
- #define BUT68 69 /* 68+BUTOFFSET, 44, num pad "5" */
- #define BUT69 70 /* 69+BUTOFFSET, 45, num pad "6" */
- #define BUT70 71 /* 70+BUTOFFSET, 46, num pad "pf2" (83-key) */
- #define BUT71 72 /* 71+BUTOFFSET, 47, num pad "pf1" (83-key) */
- #define BUT72 73 /* 72+BUTOFFSET, 48, "left arrow" */
- #define BUT73 74 /* 73+BUTOFFSET, 49, "down arrow" */
- #define BUT74 75 /* 74+BUTOFFSET, 4A, num pad "9" */
- #define BUT75 76 /* 75+BUTOFFSET, 4B, num pad "-" */
- #define BUT76 77 /* 76+BUTOFFSET, 4C, num pad "," (83-key) */
- #define BUT77 78 /* 77+BUTOFFSET, 4D, num pad "pf4" (83-key) */
- #define BUT78 79 /* 78+BUTOFFSET, 4E, num pad "pf3" (83-key) */
- #define BUT79 80 /* 79+BUTOFFSET, 4F, "right arrow" */
- #define BUT80 81 /* 80+BUTOFFSET, 50, "up arrow" */
- #define BUT81 82 /* 81+BUTOFFSET, 51, num pad "enter" */
- #define BUT82 83 /* 82+BUTOFFSET, 52, "space" */
- #define MAXKBDBUT 83 /* BUT82 */
-
- /* Mouse buttons, etc. */
- #define BUT100 101 /* 100+BUTOFFSET, Mouse button 1 */
- #define BUT101 102 /* 101+BUTOFFSET, Mouse button 2 */
- #define BUT102 103 /* 102+BUTOFFSET, Mouse button 3 */
- #define BUT103 104 /* Light Pen Button */
- #define BUT104 105 /* Bitpad Button 0 */
- #define BUT105 106 /* Bitpad Button 1 */
- #define BUT106 107 /* Bitpad Button 2 */
- #define BUT107 108 /* Bitpad Button 3 */
- #define BUT108 109 /* Light Pen Valid */
- #define BUT109 110 /* UNUSED */
-
- /* Button box definitions */
- #define BUT110 111 /* 110+BUTOFFSET, Button box switch 0 */
- #define BUT111 112 /* 111+BUTOFFSET, Button box switch 1 */
- #define BUT112 113 /* 112+BUTOFFSET, Button box switch 2 */
- #define BUT113 114 /* 113+BUTOFFSET, Button box switch 3 */
- #define BUT114 115 /* 114+BUTOFFSET, Button box switch 4 */
- #define BUT115 116 /* 115+BUTOFFSET, Button box switch 5 */
- #define BUT116 117 /* 116+BUTOFFSET, Button box switch 6 */
- #define BUT117 118 /* 117+BUTOFFSET, Button box switch 7 */
- #define BUT118 119 /* 118+BUTOFFSET, Button box switch 8 */
- #define BUT119 120 /* 119+BUTOFFSET, Button box switch 9 */
- #define BUT120 121 /* 120+BUTOFFSET, Button box switch 10 */
- #define BUT121 122 /* 121+BUTOFFSET, Button box switch 11 */
- #define BUT122 123 /* 122+BUTOFFSET, Button box switch 12 */
- #define BUT123 124 /* 123+BUTOFFSET, Button box switch 13 */
- #define BUT124 125 /* 124+BUTOFFSET, Button box switch 14 */
- #define BUT125 126 /* 125+BUTOFFSET, Button box switch 15 */
- #define BUT126 127 /* 126+BUTOFFSET, Button box switch 16 */
- #define BUT127 128 /* 127+BUTOFFSET, Button box switch 17 */
- #define BUT128 129 /* 128+BUTOFFSET, Button box switch 18 */
- #define BUT129 130 /* 129+BUTOFFSET, Button box switch 19 */
- #define BUT130 131 /* 130+BUTOFFSET, Button box switch 20 */
- #define BUT131 132 /* 131+BUTOFFSET, Button box switch 21 */
- #define BUT132 133 /* 132+BUTOFFSET, Button box switch 22 */
- #define BUT133 134 /* 133+BUTOFFSET, Button box switch 23 */
- #define BUT134 135 /* 134+BUTOFFSET, Button box switch 24 */
- #define BUT135 136 /* 135+BUTOFFSET, Button box switch 25 */
- #define BUT136 137 /* 136+BUTOFFSET, Button box switch 26 */
- #define BUT137 138 /* 137+BUTOFFSET, Button box switch 27 */
- #define BUT138 139 /* 138+BUTOFFSET, Button box switch 28 */
- #define BUT139 140 /* 139+BUTOFFSET, Button box switch 29 */
- #define BUT140 141 /* 140+BUTOFFSET, Button box switch 30 */
- #define BUT141 142 /* 141+BUTOFFSET, Button box switch 31 */
-
- /* Button definitions for the extended keyboard. Although current keyboards
- * are 101 or 102 keys, there are 112 positions and so that many values are
- * reserved.
- *
- * button button kbd
- * number offset hex key
- * ====== =========== === ===== */
- #define BUT142 143 /* 142+BUTOFFSET, 53 "left ALT" */
- #define BUT143 144 /* 143+BUTOFFSET, 54 "right ALT" */
- #define BUT144 145 /* 144+BUTOFFSET, 55 "right ctrl" */
- #define BUT145 146 /* 145+BUTOFFSET, 56 "F1" */
- #define BUT146 147 /* 146+BUTOFFSET, 57 "F2" */
- #define BUT147 148 /* 147+BUTOFFSET, 58 "F3" */
- #define BUT148 149 /* 148+BUTOFFSET, 59 "F4" */
- #define BUT149 150 /* 149+BUTOFFSET, 5A "F5" */
- #define BUT150 151 /* 150+BUTOFFSET, 5B "F6" */
- #define BUT151 152 /* 151+BUTOFFSET, 5C "F7" */
- #define BUT152 153 /* 152+BUTOFFSET, 5D "F8" */
- #define BUT153 154 /* 153+BUTOFFSET, 5E "F9" */
- #define BUT154 155 /* 154+BUTOFFSET, 5F "F10" */
- #define BUT155 156 /* 155+BUTOFFSET, 60 "F11" */
- #define BUT156 157 /* 156+BUTOFFSET, 61 "F12" */
- #define BUT157 158 /* 157+BUTOFFSET, 62 "print screen" */
- #define BUT158 159 /* 158+BUTOFFSET, 63 "scroll lock" */
- #define BUT159 160 /* 159+BUTOFFSET, 64 "pause" */
- #define BUT160 161 /* 160+BUTOFFSET, 65 "insert" */
- #define BUT161 162 /* 161+BUTOFFSET, 66 "home" */
- #define BUT162 163 /* 162+BUTOFFSET, 67 "page up" */
- #define BUT163 164 /* 163+BUTOFFSET, 68 "end" */
- #define BUT164 165 /* 164+BUTOFFSET, 69 "page down" */
- #define BUT165 166 /* 165+BUTOFFSET, 6A "num lock" */
- #define BUT166 167 /* 166+BUTOFFSET, 6B num pad "/" */
- #define BUT167 168 /* 167+BUTOFFSET, 6C num pad "*" */
- #define BUT168 169 /* 168+BUTOFFSET, 6D num pad "+" */
-
- /*
- * BUT169 (=170) through BUT179 (=180) are reserved for the remainder of
- * the 112 key positions.
- */
-
- /*
- * BUT181 through BUT189 are used for the nine buttons of the Space Ball.
- *
- * Codes through 255 inclusive are reserved for future use by SGI.
- */
- #define BUT181 182 /* 181+BUTOFFSET, space ball button 0 */
- #define BUT182 183 /* 182+BUTOFFSET, space ball button 1 */
- #define BUT183 184 /* 183+BUTOFFSET, space ball button 2 */
- #define BUT184 185 /* 184+BUTOFFSET, space ball button 3 */
- #define BUT185 186 /* 185+BUTOFFSET, space ball button 4 */
- #define BUT186 187 /* 186+BUTOFFSET, space ball button 5 */
- #define BUT187 188 /* 187+BUTOFFSET, space ball button 6 */
- #define BUT188 189 /* 188+BUTOFFSET, space ball button 7 */
- #define BUT189 190 /* 189+BUTOFFSET, space ball button 8 */
-
- /* other buttons */
-
- #define MOUSE1 101 /* BUT100 */
- #define MOUSE2 102 /* BUT101 */
- #define MOUSE3 103 /* BUT102 */
- #define LEFTMOUSE 103 /* BUT102 */
- #define MIDDLEMOUSE 102 /* BUT101 */
- #define RIGHTMOUSE 101 /* BUT100 */
- #define LPENBUT 104 /* LIGHT PEN BUTTON */
- #define BPAD0 105 /* BITPAD BUTTON 0 */
- #define BPAD1 106 /* BITPAD BUTTON 1 */
- #define BPAD2 107 /* BITPAD BUTTON 2 */
- #define BPAD3 108 /* BITPAD BUTTON 3 */
- #define LPENVALID 109 /* LIGHT PEN VALID */
-
- /* button box */
-
- #define SWBASE 111 /* BUT110 */
- #define SW0 111 /* SWBASE */
- #define SW1 112 /* SWBASE+1 */
- #define SW2 113 /* SWBASE+2 */
- #define SW3 114 /* SWBASE+3 */
- #define SW4 115 /* SWBASE+4 */
- #define SW5 116 /* SWBASE+5 */
- #define SW6 117 /* SWBASE+6 */
- #define SW7 118 /* SWBASE+7 */
- #define SW8 119 /* SWBASE+8 */
- #define SW9 120 /* SWBASE+9 */
- #define SW10 121 /* SWBASE+10 */
- #define SW11 122 /* SWBASE+11 */
- #define SW12 123 /* SWBASE+12 */
- #define SW13 124 /* SWBASE+13 */
- #define SW14 125 /* SWBASE+14 */
- #define SW15 126 /* SWBASE+15 */
- #define SW16 127 /* SWBASE+16 */
- #define SW17 128 /* SWBASE+17 */
- #define SW18 129 /* SWBASE+18 */
- #define SW19 130 /* SWBASE+19 */
- #define SW20 131 /* SWBASE+20 */
- #define SW21 132 /* SWBASE+21 */
- #define SW22 133 /* SWBASE+22 */
- #define SW23 134 /* SWBASE+23 */
- #define SW24 135 /* SWBASE+24 */
- #define SW25 136 /* SWBASE+25 */
- #define SW26 137 /* SWBASE+26 */
- #define SW27 138 /* SWBASE+27 */
- #define SW28 139 /* SWBASE+28 */
- #define SW29 140 /* SWBASE+29 */
- #define SW30 141 /* SWBASE+30 */
- #define SW31 142 /* SWBASE+31 */
-
- /* space ball buttons */
-
- #define SBBASE 182 /* BUT181 */
- #define SBPICK 182 /* SBBASE */
- #define SBBUT1 183 /* SBBASE+1 */
- #define SBBUT2 184 /* SBBASE+2 */
- #define SBBUT3 185 /* SBBASE+3 */
- #define SBBUT4 186 /* SBBASE+4 */
- #define SBBUT5 187 /* SBBASE+5 */
- #define SBBUT6 188 /* SBBASE+6 */
- #define SBBUT7 189 /* SBBASE+7 */
- #define SBBUT8 190 /* SBBASE+8 */
-
- /* standard keyboard */
-
- #define AKEY 11 /* BUT10 */
- #define BKEY 36 /* BUT35 */
- #define CKEY 28 /* BUT27 */
- #define DKEY 18 /* BUT17 */
- #define EKEY 17 /* BUT16 */
- #define FKEY 19 /* BUT18 */
- #define GKEY 26 /* BUT25 */
- #define HKEY 27 /* BUT26 */
- #define IKEY 40 /* BUT39 */
- #define JKEY 34 /* BUT33 */
- #define KKEY 35 /* BUT34 */
- #define LKEY 42 /* BUT41 */
- #define MKEY 44 /* BUT43 */
- #define NKEY 37 /* BUT36 */
- #define OKEY 41 /* BUT40 */
- #define PKEY 48 /* BUT47 */
- #define QKEY 10 /* BUT9 */
- #define RKEY 24 /* BUT23 */
- #define SKEY 12 /* BUT11 */
- #define TKEY 25 /* BUT24 */
- #define UKEY 33 /* BUT32 */
- #define VKEY 29 /* BUT28 */
- #define WKEY 16 /* BUT15 */
- #define XKEY 21 /* BUT20 */
- #define YKEY 32 /* BUT31 */
- #define ZKEY 20 /* BUT19 */
- #define ZEROKEY 46 /* BUT45 */
- #define ONEKEY 8 /* BUT7 */
- #define TWOKEY 14 /* BUT13 */
- #define THREEKEY 15 /* BUT14 */
- #define FOURKEY 22 /* BUT21 */
- #define FIVEKEY 23 /* BUT22 */
- #define SIXKEY 30 /* BUT29 */
- #define SEVENKEY 31 /* BUT30 */
- #define EIGHTKEY 38 /* BUT37 */
- #define NINEKEY 39 /* BUT38 */
- #define BREAKKEY 1 /* BUT0 */
- #define SETUPKEY 2 /* BUT1 */
- #define CTRLKEY 3 /* BUT2 */
- #define LEFTCTRLKEY CTRLKEY /* BUT2 */
- #define CAPSLOCKKEY 4 /* BUT3 */
- #define RIGHTSHIFTKEY 5 /* BUT4 */
- #define LEFTSHIFTKEY 6 /* BUT5 */
- #define NOSCRLKEY 13 /* BUT12 */
- #define ESCKEY 7 /* BUT6 */
- #define TABKEY 9 /* BUT8 */
- #define RETKEY 51 /* BUT50 */
- #define SPACEKEY 83 /* BUT82 */
- #define LINEFEEDKEY 60 /* BUT59 */
- #define BACKSPACEKEY 61 /* BUT60 */
- #define DELKEY 62 /* BUT61 */
- #define SEMICOLONKEY 43 /* BUT42 */
- #define PERIODKEY 52 /* BUT51 */
- #define COMMAKEY 45 /* BUT44 */
- #define QUOTEKEY 50 /* BUT49 */
- #define ACCENTGRAVEKEY 55 /* BUT54 */
- #define MINUSKEY 47 /* BUT46 */
- #define VIRGULEKEY 53 /* BUT52 */
- #define BACKSLASHKEY 57 /* BUT56 */
- #define EQUALKEY 54 /* BUT53 */
- #define LEFTBRACKETKEY 49 /* BUT48 */
- #define RIGHTBRACKETKEY 56 /* BUT55 */
- #define LEFTARROWKEY 73 /* BUT72 */
- #define DOWNARROWKEY 74 /* BUT73 */
- #define RIGHTARROWKEY 80 /* BUT79 */
- #define UPARROWKEY 81 /* BUT80 */
- #define PAD0 59 /* BUT58 */
- #define PAD1 58 /* BUT57 */
- #define PAD2 64 /* BUT63 */
- #define PAD3 65 /* BUT64 */
- #define PAD4 63 /* BUT62 */
- #define PAD5 69 /* BUT68 */
- #define PAD6 70 /* BUT69 */
- #define PAD7 67 /* BUT66 */
- #define PAD8 68 /* BUT67 */
- #define PAD9 75 /* BUT74 */
- #define PADPF1 72 /* BUT71 */
- #define PADPF2 71 /* BUT70 */
- #define PADPF3 79 /* BUT78 */
- #define PADPF4 78 /* BUT77 */
- #define PADPERIOD 66 /* BUT65 */
- #define PADMINUS 76 /* BUT75 */
- #define PADCOMMA 77 /* BUT76 */
- #define PADENTER 82 /* BUT81 */
-
- /* the extended keyboard */
-
- #define LEFTALTKEY 143
- #define RIGHTALTKEY 144
- #define RIGHTCTRLKEY 145
- #define F1KEY 146
- #define F2KEY 147
- #define F3KEY 148
- #define F4KEY 149
- #define F5KEY 150
- #define F6KEY 151
- #define F7KEY 152
- #define F8KEY 153
- #define F9KEY 154
- #define F10KEY 155
- #define F11KEY 156
- #define F12KEY 157
- #define PRINTSCREENKEY 158
- #define SCROLLLOCKKEY 159
- #define PAUSEKEY 160
- #define INSERTKEY 161
- #define HOMEKEY 162
- #define PAGEUPKEY 163
- #define ENDKEY 164
- #define PAGEDOWNKEY 165
- #define NUMLOCKKEY 166
- #define PADVIRGULEKEY 167
- #define PADASTERKEY 168
- #define PADPLUSKEY 169
-
- /*
- * By rights, we should define symbolic entries here for all of the new
- * characters brought to us by ISO 8859-1. In fact, since there is no
- * current convention to avoid making new symbols that are unique, the
- * danger of collison with existing user symbols is too high.
- */
-
-
- /* valuators */
-
- #define SGIRESERVED 256 /* 0+VALOFFSET */
- #define DIAL0 257 /* 1+VALOFFSET */
- #define DIAL1 258 /* 2+VALOFFSET */
- #define DIAL2 259 /* 3+VALOFFSET */
- #define DIAL3 260 /* 4+VALOFFSET */
- #define DIAL4 261 /* 5+VALOFFSET */
- #define DIAL5 262 /* 6+VALOFFSET */
- #define DIAL6 263 /* 7+VALOFFSET */
- #define DIAL7 264 /* 8+VALOFFSET */
- #define DIAL8 265 /* 9+VALOFFSET */
- #define MOUSEX 266 /* 10+VALOFFSET */
- #define MOUSEY 267 /* 11+VALOFFSET */
- #define LPENX 268 /* 12+VALOFFSET */
- #define LPENY 269 /* 13+VALOFFSET */
- #define BPADX 270 /* 14+VALOFFSET */
- #define BPADY 271 /* 15+VALOFFSET */
- #define CURSORX 272 /* 16+VALOFFSET */
- #define CURSORY 273 /* 17+VALOFFSET */
- #define GHOSTX 274 /* 18+VALOFFSET */
- #define GHOSTY 275 /* 19+VALOFFSET */
-
- /* Space Ball valuators */
-
- #define SBTX 276 /* 20+VALOFFSET */
- #define SBTY 277 /* 21+VALOFFSET */
- #define SBTZ 278 /* 22+VALOFFSET */
- #define SBRX 279 /* 23+VALOFFSET */
- #define SBRY 280 /* 24+VALOFFSET */
- #define SBRZ 281 /* 25+VALOFFSET */
- #define SBPERIOD 282 /* 26+VALOFFSET */
-
- /* timers */
-
- #define TIMER0 515 /* 0+TIMOFFSET */
- #define TIMER1 516 /* 1+TIMOFFSET */
- #define TIMER2 517 /* 2+TIMOFFSET */
- #define TIMER3 518 /* 3+TIMOFFSET */
-
- /* misc devices */
-
- #define KEYBD 513 /* keyboard */
- #define RAWKEYBD 514 /* raw keyboard for keyboard manager */
- #define VALMARK 523 /* valuator mark */
- #define REDRAW 528 /* used by port manager to signal redraws */
- #define INPUTCHANGE 534 /* input connected or disconnected */
- #define QFULL 535 /* queue was filled */
- #define QREADERROR 538 /* qread error */
- #define WINFREEZE 539 /* user wants process in this win to shut up */
- #define WINTHAW 540 /* user wants process in this win to go again */
- #define REDRAWICONIC 541 /* used to signal redraw as an icon */
- #define WINQUIT 542 /* signal from user that app is to go away */
- #define DEPTHCHANGE 543 /* window stacking order changed */
- #define WINSHUT 546 /* window shutdown */
- #define DRAWOVERLAY 547 /* overlay planes have been damaged */
- #define VIDEO 548 /* video notification */
-
- #define MENUBUTTON RIGHTMOUSE /* the button used by dopup */
-
-
- /*
- * obsolete symbols
- */
-
- #define DEVICEDEF __GL_DEVICE_H__
-
- #define WINCLOSE 537 /* window close */
- #define KEYBDFNAMES 544 /* function key names */
- #define KEYBDFSTRINGS 545 /* function key strings */
- #define MAXSGIDEVICE 20000
-
- /* these events only occur when using the mex window manager (3K Series) */
- #define GERROR 524 /* errors device */
- #define WMSEND 529 /* data in proc's shmem */
- #define WMREPLY 530 /* reply from port manager */
- #define WMGFCLOSE 531 /* graphport is no longer being used */
- #define WMTXCLOSE 532 /* textport is no longer being used */
- #define MODECHANGE 533 /* the display mode has changed */
- #define PIECECHANGE 536 /* change in the window pieces */
-
-
- #endif /* !__GL_DEVICE_H__ */
-